home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / filbx2 / aboutfb.frm next >
Text File  |  1995-05-08  |  2KB  |  77 lines

  1. VERSION 2.00
  2. Begin Form About 
  3.    Caption         =   "About FILEBOX"
  4.    ClientHeight    =   2940
  5.    ClientLeft      =   1305
  6.    ClientTop       =   1800
  7.    ClientWidth     =   7365
  8.    ControlBox      =   0   'False
  9.    Height          =   3345
  10.    Left            =   1245
  11.    LinkMode        =   1  'Source
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   2940
  16.    ScaleWidth      =   7365
  17.    Top             =   1455
  18.    Width           =   7485
  19.    Begin PictureBox Picture1 
  20.       BorderStyle     =   0  'None
  21.       Height          =   740
  22.       Left            =   600
  23.       Picture         =   ABOUTFB.FRX:0000
  24.       ScaleHeight     =   735
  25.       ScaleWidth      =   495
  26.       TabIndex        =   0
  27.       Top             =   360
  28.       Width           =   495
  29.    End
  30.    Begin CommandButton Command1 
  31.       Caption         =   "I'm Done"
  32.       Height          =   860
  33.       Left            =   6000
  34.       TabIndex        =   3
  35.       Top             =   240
  36.       Width           =   975
  37.    End
  38.    Begin Label what 
  39.       Height          =   1340
  40.       Left            =   1440
  41.       TabIndex        =   1
  42.       Top             =   1440
  43.       Width           =   5655
  44.    End
  45.    Begin Label who 
  46.       Alignment       =   2  'Center
  47.       Height          =   1100
  48.       Left            =   1680
  49.       TabIndex        =   2
  50.       Top             =   120
  51.       Width           =   3855
  52.    End
  53. End
  54. Sub Command1_Click ()
  55.    Unload about
  56. End Sub
  57.  
  58. Sub Form_Load ()
  59.      
  60.      o$ = "by:" + CRLF
  61. o$ = o$ + "Thomas Kiehl" + CRLF
  62. o$ = o$ + "P.O. Box 693" + CRLF
  63. o$ = o$ + "Indian Rocks Beach, FL 34635" + CRLF
  64. o$ = o$ + "Compuserve ID: 73215,427"
  65.      
  66.      A$ = "This is a FILE OPEN dialog box that behaves much" + CRLF
  67. A$ = A$ + "like the open project dialog box in Visual BASIC." + CRLF
  68. A$ = A$ + "It is a conglomeration of ideas, some mine, some others'," + CRLF
  69. A$ = A$ + "some good, some bad.  Most of all, IT WORKS!!!!!!!!!" + CRLF
  70. A$ = A$ + "Just click on OPEN from the FILE pulldown menu."
  71.  
  72. who.caption = o$
  73. what.caption = A$
  74.  
  75. End Sub
  76.  
  77.